obj1 <= obj2

Less-or-equal operator. Returns true if object obj1 is smaller or equal than object obj2.
If the compared objects are strings, the function uses the lexicographical order implemented by the java language.


Example


3 <= 4

true

"a"<="z"

true